home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / redakcyjne / programy / VideoLAN Client (VLC) 1.0.5 / vlc-1.0.5-win32.exe / lua / meta / 10_googleimage.lua < prev    next >
Text File  |  2010-01-30  |  2KB  |  49 lines

  1. --[[
  2.  Gets an artwork from images.google.com
  3.  
  4.  $Id$
  5.  Copyright ┬⌐ 2007 the VideoLAN team
  6.  
  7.  This program is free software; you can redistribute it and/or modify
  8.  it under the terms of the GNU General Public License as published by
  9.  the Free Software Foundation; either version 2 of the License, or
  10.  (at your option) any later version.
  11.  
  12.  This program is distributed in the hope that it will be useful,
  13.  but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.  GNU General Public License for more details.
  16.  
  17.  You should have received a copy of the GNU General Public License
  18.  along with this program; if not, write to the Free Software
  19.  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  20. --]]
  21.  
  22. -- Replace non alphanumeric char by +
  23. function get_query( title )
  24.     -- If we have a .EXT remove the extension.
  25.     str = string.gsub( title, "(.*)%....$", "%1" )
  26.     return string.gsub( str, "([^%w ])",
  27.          function (c) return string.format ("%%%02X", string.byte(c)) end)
  28. end
  29.  
  30. -- Return the artwork
  31. function fetch_art()
  32.     if vlc.artist and vlc.album then
  33.         title = vlc.artist.." "..vlc.album
  34.     elseif vlc.title and vlc.artist then
  35.         title = vlc.artist.." "..vlc.title
  36.     elseif vlc.title then
  37.         title = vlc.title
  38.     elseif vlc.name then
  39.         title = vlc.name
  40.     else
  41.         return nil
  42.     end
  43.     fd = vlc.stream( "http://images.google.com/images?q=" .. get_query( title ) )
  44.     page = fd:read( 65653 )
  45.     fd = nil
  46.     _, _, arturl = string.find( page, "imgurl=([^&]+)" )
  47.     return arturl
  48. end
  49.